all: host jtag_host
host: host.c
	gcc -O2 -o host host.c -lusb
jtag_host: jtag_host.c jtag.c jtag.h
	gcc -O2 -o jtag_host jtag_host.c jtag.c -lusb
clean:
	rm host jtag_host
